home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1999 May / Software of the Month - Ultimate Collection Shareware 261.iso / mac / Games / X-Files Trivia / X-Files Trivia Challenge PPC / X-Files Trivia Challenge PPC.rsrc / STR#_5000.txt < prev    next >
Encoding:
Text File  |  1998-08-19  |  2.2 KB  |  153 lines

  1. on...=on xxx
  2. |
  3. end xxx
  4.  
  5. function...=function xxx
  6. |
  7. end xxx
  8.  
  9. --
  10.  
  11. on startUp=on startUp
  12. |
  13. end startUp
  14.  
  15. on openProject...=on openProject
  16. |
  17. end openProject
  18.  
  19. on openWindow...=on openWindow
  20. |
  21. end openWindow
  22.  
  23. on openBackground...=on openBackground
  24. |
  25. end openBackground
  26.  
  27. on openCard...=on openCard
  28. |
  29. end openCard
  30.  
  31. --
  32.  
  33. on closeCard...=on closeCard
  34. |
  35. end closeCard
  36.  
  37. on closeBackground...=on closeBackground
  38. |
  39. end closeBackground
  40.  
  41. on closeWindow...=on closeWindow
  42. |
  43. end closeWindow
  44.  
  45. on closeProject...=on closeProject
  46. |
  47. end closeProject
  48.  
  49. on quitSuperCard...=on quitSuperCard
  50. |
  51. end quitSuperCard
  52.  
  53. --
  54.  
  55. if...then...=if |<logical>| then <true_statements>
  56.  
  57. if...then...end=if |<logical>| then
  58. -- true statements
  59.  
  60. end if
  61.  
  62. if...then...else...=if |<logical>| then
  63. -- true statements
  64.  
  65. else <false_statements>
  66.  
  67. if...then...else...end=if |<logical>| then
  68. -- true statements
  69.  
  70. else
  71. -- false statements
  72.  
  73. end if
  74.  
  75. if...then...else if...else...end=if |<logical1>| then
  76. -- logical 1 true statements
  77.  
  78. else if <logical2> then
  79. -- logical 2 true statements
  80.  
  81. else
  82. -- both false statements
  83.  
  84. end if
  85.  
  86. switch...case...end=switch |<condition>|
  87. case <value1>
  88. -- case 1 statements
  89.  
  90. exit switch
  91. case <value2>
  92. -- case 2 statements
  93.  
  94. exit switch
  95. end switch
  96.  
  97. --
  98.  
  99. repeat forever...=repeat forever
  100. |
  101. end repeat
  102.  
  103. repeat for...=repeat for |<value>| times
  104.  
  105. end repeat
  106.  
  107. repeat until...=repeat until |<logical>|
  108.  
  109. end repeat
  110.  
  111. repeat while...=repeat while |<logical>|
  112.  
  113. end repeat
  114.  
  115. repeat with...=repeat with |<variable>| = <value1> to <value2>
  116.  
  117. end repeat
  118.  
  119. --
  120.  
  121. itemDelimiter=put the itemDelimiter into oldDelimiter
  122. set the itemDelimiter to |<character>|
  123.  
  124. set the itemDelimiter to oldDelimiter
  125.  
  126. lineDelimiter=put the lineDelimiter into oldDelimiter
  127. set the lineDelimiter to |<character>|
  128.  
  129. set the lineDelimiter to oldDelimiter
  130.  
  131. lockScreen=set the lockScreen to true
  132. |
  133. set the lockScreen to false
  134.  
  135. lockMessages=set the lockMessages to true
  136. |
  137. set the lockMessages to false
  138.  
  139. multiEffect=set the multiEffect to true
  140. |
  141. set the multiEffect to false
  142.  
  143. numberFormat=put the numberFormat into oldFormat
  144. set the numberFormat to |<character>|
  145.  
  146. set the numberFormat to oldFormat
  147.  
  148. wordDelimiter=put the wordDelimiter into oldDelimiter
  149. set the wordDelimiter to |<character>|
  150.  
  151. set the wordDelimiter to oldDelimiter
  152.  
  153.